home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / bueh16.zip / TEST.C < prev    next >
C/C++ Source or Header  |  1994-08-26  |  356b  |  15 lines

  1. #include <stdio.h>
  2. #include <windows.h>
  3.  
  4. #pragma argsused
  5. int main (int argc, char *argv[])
  6. {
  7.   GetFocus ();        // This one will be fixed up and handled by BUEH
  8.   Yield ();           // This one will be fixed up and handled by BUEH
  9.   GetMessageTime ();  // This one will be fixed up to an error routine.
  10.  
  11.   return 0;
  12. }
  13.  
  14. #include "bueh.c"
  15.